runtime.sudog.parent (field)
30 uses
runtime (current package)
runtime2.go#L393: parent *sudog // semaRoot binary tree
sema.go#L302: s.parent = t.parent
sema.go#L306: s.prev.parent = s
sema.go#L309: s.next.parent = s
sema.go#L321: t.parent = nil
sema.go#L360: s.parent = last
sema.go#L364: for s.parent != nil && s.parent.ticket > s.ticket {
sema.go#L365: if s.parent.prev == s {
sema.go#L366: root.rotateRight(s.parent)
sema.go#L368: if s.parent.next != s {
sema.go#L371: root.rotateLeft(s.parent)
sema.go#L407: t.parent = s.parent
sema.go#L410: t.prev.parent = t
sema.go#L414: t.next.parent = t
sema.go#L443: if s.parent != nil {
sema.go#L444: if s.parent.prev == s {
sema.go#L445: s.parent.prev = nil
sema.go#L447: s.parent.next = nil
sema.go#L454: s.parent = nil
sema.go#L466: p := x.parent
sema.go#L471: x.parent = y
sema.go#L474: b.parent = x
sema.go#L477: y.parent = p
sema.go#L494: p := y.parent
sema.go#L499: y.parent = x
sema.go#L502: b.parent = y
sema.go#L505: x.parent = p
![]() |
The pages are generated with Golds v0.7.6. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |